home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / _chkabort.c next >
C/C++ Source or Header  |  1999-01-01  |  152b  |  10 lines

  1. #include <libraries/dos.h>
  2. #include <proto/exec.h>
  3.  
  4. void _chkabort(void)
  5. {
  6.     if(SetSignal(0L,SIGBREAKF_CTRL_C)&SIGBREAKF_CTRL_C)
  7.         exit(20);
  8. }
  9.  
  10.